iT邦幫忙

2023 iThome 鐵人賽

DAY 13
0
自我挑戰組

C語言精讀研習系列 第 13

adjust函式修改分數-C語言證照題庫

  • 分享至 

  • xImage
  •  
  1. 輸入分數,以adjust函數調整分數
  2. 分數 >=60 則 +5分,否則 +10分

完整程式碼

#include <stdio.h>

int adjust(int score){	//宣告並定義adjust函數 
	if (score >= 60){
		return score + 5;
	}else{
		return score + 10;
	}
}

int main(){
	int score;
	
	printf("請輸入您的分數:");
	scanf("%d", &score);
	printf("調整後的分數:%d", adjust(score));
	
	return 0;
}

加5分
https://ithelp.ithome.com.tw/upload/images/20230925/20160744c8uomt10AD.png

加10分
https://ithelp.ithome.com.tw/upload/images/20230925/20160744UEmFgssgE8.png

參考來源:TQC+ C 函數與陣列 302


上一篇
透過全域、區域變數來瞭解變數可使用的生存空間
下一篇
全局變數與局部變數的生存空間與呼叫-C語言證照題庫
系列文
C語言精讀研習47
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言